home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / util2 / pgp22src.zip / SRC / ARMOR.H < prev    next >
C/C++ Source or Header  |  1993-03-07  |  592b  |  19 lines

  1. #ifndef ARMORP_H
  2. #define ARMORP_H
  3.  
  4. #include <stdio.h>
  5.  
  6. /* #define crcword unsigned short */    /* if CRCBITS is 16 */
  7. /* #define crcword unsigned short */    /* if CRCBITS is 16 */
  8.  
  9. #define crcword unsigned long        /* if CRCBITS is 24 or 32 */
  10.  
  11. extern crcword crcupdate(byte data, register crcword accum);
  12. extern void init_crc(void);
  13. extern int armor_file (char *infile, char *outfile, char *filename,
  14.     char *clearname);
  15. extern int de_armor_file(char *infile, char *outfile, long *curline);
  16. extern boolean is_armor_file (char *infile, long startline);
  17.  
  18. #endif /* #ifdef ARMORP_H */
  19.